home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 1995 #5 & #6 / Amiga Plus CD - 1995 - No. 5 and 6.iso / pd / daten / xmgr / docs / bugs < prev    next >
Text File  |  1995-02-03  |  4KB  |  136 lines

  1. BUGS in xmgr-3.01pl3 as of 1-20-95
  2.  
  3. BUGS in xmgr-3.01pl2 as of 12-10-94
  4.  
  5. BUGS in xmgr-3.01pl1 as of 12-10-94
  6.  
  7. BUG
  8. Error in calls to CreatePanelChoice() in tickwin.c
  9. (fixed in xmgr-3.01pl2)
  10.  
  11. BUG
  12. GR_HELPFILE and GR_HELPVIEW env variables are incorrectly specified
  13. in the Makefile.
  14. (fixed in xmgr-3.01pl2)
  15.  
  16. BUGS in xmgr-3.01 as of 10-10-94
  17.  
  18. BUG
  19. Assumption about the way realloc() works was incorrect - there is no
  20. guarantee the the additional memory is zero'ed - this led to core dumps
  21. on SGIs when using the -maxsets commandline parameter.
  22. FIX
  23. replace defaults.c with ftp://ftp.ccalmr.ogi.edu/pub/acegr/defaults.c
  24. (fixed in xmgr-3.01pl1)
  25.  
  26. BUG
  27. getvptr() in pars.yacc returned pointers from sets in the current graph
  28. only.
  29. FIX
  30. In pars.yacc (or pars.c), in procedure getvptr(), change cg to gno every
  31. where cg occurs.
  32. (fixed in xmgr-3.01pl1)
  33.  
  34. BUG
  35. arrange() used for the -arrange command line option was broken.
  36. FIX
  37. At line around 29 in graphutils2.c add the following 2 lines:
  38.  
  39.                 g[gtmp].v.yv2 -= 0.07;  /* context */
  40.                 set_graph_active(gtmp); /* add this line */
  41.                 update_all(cg);         /* and this line */
  42.                 gtmp++;                 /* context */
  43. (fixed in xmgr-3.01pl1)
  44.  
  45. BUG
  46. Several problems with links in the HTML documentation.
  47. Known problems fixed for 3.02
  48.  
  49. BUG
  50. Numerous functions were declared XtCallbackProc when they should've been
  51. void.
  52. Fixed for 3.02
  53.  
  54. BUGS in xmgr-3.00 as of 8-01-94
  55.  
  56. BUG
  57. In Regions/Extract points, the To set is off by one and set 0 cannot
  58. be used as a destination.
  59. FIX
  60. in regionwin.c there is a call to CreateSetChoice()
  61. with the type of choice item set to 0, should be 4. Around line 266
  62. make it look like:
  63.  
  64. extract_set_item = CreateSetChoice(dialog, "Load points in region to set:", maxplot, 4);
  65.  
  66. BUG
  67. HDF variables with names containing imbedded blanks not read.
  68. FIX
  69. Replace files.c and fileswin.c in the 3.00 distribution with
  70.  
  71. ftp://ftp.ccalmr.ogi.edu/CCALMR/pub/acegr/hayes/files.c
  72. ftp://ftp.ccalmr.ogi.edu/CCALMR/pub/acegr/hayes/fileswin.c
  73.  
  74. BUG
  75. Nonlinear curve fitting module broken (this is not a 
  76. supported feature).
  77. FIX
  78. None for 3.00, use xmgr v2.10.
  79.  
  80. BUG
  81. DX and DY in the yacc grammar refer to X and Y of the current set.
  82. Formerly, these referred to the span of X and Y wrt to the current 
  83. graph.
  84. FIX
  85. Use (wx2-wx1) and (wy2-wy1). 3.01 will return these variables to
  86. their orginal meaning.
  87.  
  88. BUG
  89. Selecting the set and graph in Data/Transformations/Histogram have
  90. no effect. Next available set in the current graph is used for the
  91. result.
  92. FIX
  93. None for 3.00.
  94.  
  95. BUG
  96. XYRT data sets can generate errors in PostScript output.
  97. Could be due to small radii.
  98. FIX
  99. None for 3.00
  100.  
  101.  
  102. BUG
  103. Delete points in regions causes core dump.
  104. FIX
  105. In regionutils.c (wrt to xmgr v3.00) at line 238, move the lines
  106. beginning with 'if (setno < 0) {' to just after the line:
  107.  
  108.         if (isactive_graph(k)) {
  109.  
  110. and change gno to k.
  111.  
  112.  
  113. BUG
  114. Interpolation module in Data/Transformations not implemented.
  115. FIX
  116. I just noticed that the option in Transformations called Interpolation
  117. is not working - it was something I started on but never completed (I'll
  118. try again for 3.01). The easiest way to hide this is to just comment out
  119. the lines:
  120.  
  121. wbut = XtVaCreateManagedWidget("Interpolation...", xmPushButtonWidgetClass, comp_panel,
  122.                                        NULL);
  123. XtAddCallback(wbut, XmNactivateCallback, (XtCallbackProc) create_interp_frame, (XtPointer) NULL);
  124.  
  125. at around line 197 in compwin.c.
  126.  
  127. The interface is built, but the code that does the interpolation has yet to be
  128. written.
  129.  
  130.  
  131. BUG
  132. Nonlinear curve fitting module broken (this is not a 
  133. supported feature).
  134. FIX
  135. None at the present
  136.